/* Base Styles */

/* Variables */
:root {
    --primary-color: #e50914;
    --secondary-color: #b20710;
    --light-gray: #f9f9f9;
    --dark-gray: #333;
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Sour Gummy', cursive;
    --default-padding: 1rem;
    --default-font-size: 1rem;
    --heading-line-height: 1.6;
    --body-line-height: 1.8;
    --max-container-width: 1200px;
}

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body and Typography */
body {
    font-family: Arial, sans-serif;
    line-height: var(--body-line-height);
    color: var(--dark-gray);
    background-color: #fff;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    line-height: var(--heading-line-height);
}

p {
    font-size: var(--default-font-size);
    line-height: var(--body-line-height);
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.container {
    width: 90%;
    max-width: var(--max-container-width);
    margin: 0 auto;
    padding: var(--default-padding);
}

/* Buttons */
.button {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 0.75rem 1.5rem;
    font-size: 1.2rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.button:hover {
    background-color: var(--secondary-color);
}

/* Links */
a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
}
